home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / HD / SmartFileSystem / V1.58 / Sources / fs / redblacktree.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-29  |  145 b   |  9 lines

  1. /* red-black tree description */
  2.  
  3. typedef unsigned char NodeColor;
  4.  
  5. #define BLACK (0)
  6. #define RED (1)
  7.  
  8. // typedef enum { BLACK, RED } NodeColor;
  9.